home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000379_news@newsmaster….columbia.edu _Tue Aug 18 01:53:04 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id BAA02883
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 Aug 1998 01:53:03 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id BAA24219
  7.     for kermit.misc@watsun; Tue, 18 Aug 1998 01:53:03 -0400 (EDT)
  8. Path: news.columbia.edu!panix!news-xfer.netaxs.com!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!sunqbc.risq.qc.ca!novia!news.unisys.com.br!news.eskimo.com!pygmy
  9. From: pygmy@eskimo.com (Frank Sergeant)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: K95 telnet to dosemu under Linux
  12. Date: Mon, 17 Aug 1998 17:38:38 -0500
  13. Organization: Eskimo North (206) For-Ever
  14. Lines: 70
  15. Message-ID: <uDL21Yv1uwRT084yn@eskimo.com>
  16. References: <PHK01Yv1uIJW084yn@eskimo.com>
  17. Reply-To: frank.sergeant@pobox.com
  18. NNTP-Posting-Host: eskimo.com
  19. Originator: pygmy@eskimo.com
  20. Xref: news.columbia.edu comp.protocols.kermit.misc:9104
  21.  
  22. In my on-going quest for using Kermit's telnet from DOS or W95
  23. to run a DOS Clipper application under the DOS emulator (dosemu)
  24. on Linux, I have been doing some more experimenting.
  25.  
  26. Under Kermit95 (1.1.17), if I set the terminal type to linux
  27. and if on the Linux box I set dosemu to use terminal 'ibm'
  28. rather than 'latin', I _can_ get proper box drawing characters
  29. and legible text but only if after starting dosemu I break
  30. out to Kermit with alt-X and type
  31.  
  32.        set term char cp437
  33.  
  34. or
  35.  
  36.        set term char transparent
  37.  
  38. then re-enter telnet by typing c.
  39.  
  40. It doesn't work if I 'set term char cp437' prior to starting
  41. dosemu.  This is very strange, isn't it?  Does anyone have
  42. any idea what is going on?  It is as if Kermit and Linux
  43. are in agreement about the protocol and then starting dosemu
  44. changes that agreement.  (I'll also post this question to the
  45. dosemu mailing list.)  Any idea how to fix this?  It is rather
  46. inconvenient to use the above work around.
  47.  
  48. There is better news on the DOS Kermit (version 3.15) front.
  49. I have given up on putting DOS Kermit into 25 row mode.  (Can
  50. anyone tell me how to do it?)  Instead, I have changed the
  51. Clipper application to write no more than 24 rows.  This does
  52. work.  I set DOS Kermit to VT320 or to ANSI-BBS (it doesn't
  53. seem to make a difference) and set dosemu to 'ibm'.  I get
  54. legible text and proper box drawing characters.  With SET KEY
  55. statements I can turn on PgDn, PgUp, Ctrl-PgDn, Ctrl-PgUp.
  56. The only funny thing here is that Ctrl-PgDn must be pressed
  57. twice to work (same problem under Kermit95).  I can turn on F1
  58. with
  59.  
  60.      set key \315  \28  ; F1
  61.  
  62. but I cannot get any of the other function keys to work.  They
  63. all seem to need to be set to negative numbers, (that is, Clipper
  64. compares the character code to the value -1 to see if it is the F2
  65. key), so I would need to write something like
  66.  
  67.      set key \316  \-1  ; F2
  68.  
  69. but that doesn't work.  The function keys do work in Kermit95
  70. with settings such as
  71.  
  72.      set key \316 \Kansif02  ; F2
  73.  
  74. but there doesn't seem to be the verb Kansif02 under DOS
  75. Kermit.  Can anyone suggest a way to get the function keys
  76. working (with Clipper) under DOS Kermit?
  77.  
  78. I still have some minor problems, such as the cursor flashing
  79. in the upper left corner when Clipper thinks it has turned
  80. the cursor off, and perhaps some graphic characters such as
  81. diamond and downarrow not displaying just right.  I'd like
  82. to cure these also, but could live with them.
  83.  
  84. There is no real urgency about any of this.  At this point
  85. it is mainly a matter of curiosity.  I've gone this far
  86. with it that I'd like to see if working all the way.
  87.  
  88.  
  89.   -- Frank
  90.   frank.sergeant@pobox.com
  91.